@font-face{
    font-family: lopis;
    src: url(Fonts/ttf/BebasNeue-Regular.ttf);
  }
*{
    margin: 0rem;
}
.mainQuienes{
    width: 100%;
    height: auto;
    display: flex;
    background-color: black;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
}
.textThingy{
    display: flex;
    margin-top: 7rem;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.textThingy h1{
    font-family: lopis;
    letter-spacing: 0.06em;
    font-size: 6rem;
}
.textThingy p {
    max-width: 90%;
    text-align: justify;
    font-size: 1.3rem;
}
.imagesPers{
    display: flex;
    width: 80%;
    height: auto;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.imgPers{
    width: 100%;
    cursor: pointer;
}
.imageContainerT{
    width: 27%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tilteNames{
    font-family: lopis;
    font-size: 2.1rem;
    letter-spacing: 0.06em;
    margin-top: .8rem;
    cursor: pointer;
}
.displayer{
    background-color: rgba(0, 0, 0, .8);
    height: 100%;
    width: 100%;
    z-index: 3;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
}
.animi2{
    animation-name: thingy;
    animation-duration: .3s;
}
.animi1{
    animation-name: thingy;
    animation-duration: .3s;
    animation-direction: reverse;
}
@keyframes thingy{
    from{
        top: 50%;
        left: 50%;
        height: 0%;
        width: 0%;
    }
    to{
        top: 0%;
        left: 0%;
        height: 100%;
        width: 100%;
    }
}
#imageChange{
    height: 100%;
}
#captionFade{
    color: white;
    font-size: 3rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.arrows{
    font-size: 5rem;
    color: white;
    margin: 1rem;
    cursor: pointer;
}
#viewerTitle{
    font-size: 80%;
    font-family: lopis;
}
#viewerText{
text-align: justify;
font-size: 1.15rem;
max-width: 90%;
}
@media screen and (max-width: 450px){
    .mainQuienes{
        height: auto;
    }
    .textThingy{
        margin-top: 20%;
    }
    .textThingy h1{
        font-size: 13rem;
    }
    .textThingy p{
        font-size: 4.5rem;        
    }
    .imagesPers{
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        
    }
    .imageContainerT{
        width: 100%;
        flex-direction: column-reverse;
    }
    .tilteNames{
        font-size: 10rem;
        max-width: 80%;
    }
    .imgPers{
        width: 80%;
        margin-bottom: 10rem;
    }
    #imageChange{
        width: 80%;
        height: auto;
    }
    .arrows{
        font-size: 12rem;
    }
    #viewerTitle{
        font-size: 350%;
    }
    #viewerText{
        font-size: 120%;
    }
    #captionFade{
        overflow: scroll;
    }     
}